



/* =====================================================
   HOMESADDA COLORS
===================================================== */

:root {

    --homesadda-blue: #0059BA;

    --homesadda-blue-dark: #00458F;

    --homesadda-green: #31B139;

    --homesadda-green-dark: #238A2B;

    --homesadda-dark: #16202A;

    --homesadda-text: #40505E;

    --homesadda-light: #F5F9FC;

    --homesadda-border: #E5EAF0;

}


/* =====================================================
   GLOBAL
===================================================== */

.homesadda-header *,
.homesadda-property-hero *,
.homesadda-header *::before,
.homesadda-property-hero *::before,
.homesadda-header *::after,
.homesadda-property-hero *::after {

    box-sizing: border-box;

}


/* =====================================================
   HEADER
===================================================== */
.homesadda-header {
    width: 100%;
    background: #f1f8ff;
    border-bottom: 1px solid var(--homesadda-border);
    position: relative;
    z-index: 9999;
    font-family: 'Poppins', sans-serif;
}

/* =====================================================
   HEADER CONTAINER
===================================================== */

.homesadda-container {
    width: 100%;
    max-width: 1380px;
    min-height: 56px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* =====================================================
   LOGO
===================================================== */

.homesadda-logo {

    display: flex;

    align-items: center;

    flex-shrink: 0;

    z-index: 5;

}


.homesadda-logo a {

    display: flex;

    align-items: center;

    text-decoration: none;

}


.homesadda-logo img {
    display: block;
    width: auto;
    max-width: 140px;
    max-height: 62px;
    height: auto;
}


/* =====================================================
   DESKTOP NAVIGATION
===================================================== */

.homesadda-nav {

    position: absolute;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

}


.homesadda-nav ul {

    display: flex;

    align-items: center;

    gap: 42px;

    margin: 0;

    padding: 0;

    list-style: none;

}


.homesadda-nav li {

    margin: 0;

    padding: 0;

    list-style: none;

}


.homesadda-nav a {
    position: relative;
    display: inline-block;
    padding: 0;
    color: var(--homesadda-dark);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.25s ease;
}


.homesadda-nav a:hover {

    color: var(--homesadda-blue);

}


.homesadda-nav a::after {

    content: "";

    position: absolute;

    left: 50%;

    bottom: 1px;

    width: 0;

    height: 3px;

    background: var(--homesadda-green);

    border-radius: 20px;

    transform: translateX(-50%);

    transition: width 0.25s ease;

}


.homesadda-nav a:hover::after {

    width: 100%;

}


/* =====================================================
   RIGHT SIDE
===================================================== */

.homesadda-header-right {

    margin-left: auto;

    display: flex;

    align-items: center;

    gap: 15px;

    z-index: 5;

}


/* =====================================================
   POST PROPERTY
===================================================== */

.post-property-btn {

    min-height: 48px;

    padding: 0 22px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    background: var(--homesadda-blue);

    color: #ffffff !important;

    border: 2px solid var(--homesadda-blue);

    border-radius: 8px;

    font-family: 'Poppins', sans-serif;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none !important;

    white-space: nowrap;

    box-shadow: 0 5px 15px rgba(0, 89, 186, 0.18);

    transition: all 0.25s ease;

}


.post-property-plus {

    width: 21px;

    height: 21px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    color: var(--homesadda-blue);

    background: #ffffff;

    border-radius: 50%;

    font-family: Arial, sans-serif;

    font-size: 19px;

    font-weight: 500;

}


.post-property-btn:hover {

    background: var(--homesadda-green);

    border-color: var(--homesadda-green);

    transform: translateY(-2px);

}


/* =====================================================
   MOBILE MENU BUTTON
===================================================== */

.homesadda-menu-toggle {

    width: 45px;

    height: 45px;

    padding: 0;

    display: none;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 5px;

    background: #ffffff;

    border: 1px solid var(--homesadda-border);

    border-radius: 8px;

    cursor: pointer;

}


.homesadda-menu-toggle span {

    display: block;

    width: 22px;

    height: 2px;

    background: var(--homesadda-blue);

    border-radius: 10px;

    transition: all 0.25s ease;

}


/* =====================================================
   MOBILE NAV
===================================================== */

.homesadda-mobile-nav {

    display: none;

    width: 100%;

    background: #ffffff;

    border-top: 1px solid var(--homesadda-border);

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);

}


.homesadda-mobile-nav ul {

    margin: 0;

    padding: 12px 25px 25px;

    list-style: none;

}


.homesadda-mobile-nav li {

    margin: 0;

    padding: 0;

    list-style: none;

}


.homesadda-mobile-nav li a {

    display: block;

    padding: 15px 0;

    color: var(--homesadda-dark);

    font-family: 'Poppins', sans-serif;

    font-size: 15px;

    font-weight: 600;

    text-decoration: none;

    border-bottom: 1px solid var(--homesadda-border);

}


.homesadda-mobile-nav li a:hover {

    color: var(--homesadda-blue);

}


.homesadda-mobile-nav .mobile-post-btn {

    margin-top: 15px;

    padding: 14px 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    background: var(--homesadda-blue);

    color: #ffffff !important;

    border: 0;

    border-radius: 8px;

}


.homesadda-mobile-nav .mobile-post-btn span {

    font-size: 21px;

}


.homesadda-mobile-nav.active {

    display: block;

}


/* =====================================================
   HAMBURGER ACTIVE
===================================================== */

.homesadda-menu-toggle.active span:nth-child(1) {

    transform: translateY(7px) rotate(45deg);

}


.homesadda-menu-toggle.active span:nth-child(2) {

    opacity: 0;

}


.homesadda-menu-toggle.active span:nth-child(3) {

    transform: translateY(-7px) rotate(-45deg);

}


/* =====================================================
   PROPERTY HERO
===================================================== */

.homesadda-property-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: radial-gradient( circle at 85% 20%, rgba(49, 177, 57, 0.13), transparent 32% ), linear-gradient( 135deg, #F5F9FC 0%, #FFFFFF 55%, #F1FAF2 100% );
    padding: 40px 20px 60px;
    font-family: 'Poppins', sans-serif;
}

.homesadda-property-hero::before {

    content: "";

    position: absolute;

    width: 420px;

    height: 420px;

    right: -180px;

    top: -180px;

    border-radius: 50%;

    background: rgba(0, 89, 186, 0.055);

}


.homesadda-property-hero::after {

    content: "";

    position: absolute;

    width: 280px;

    height: 280px;

    left: -150px;

    bottom: -160px;

    border-radius: 50%;

    background: rgba(49, 177, 57, 0.06);

}


/* =====================================================
   HERO CONTAINER
===================================================== */

.homesadda-hero-container {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1180px;

    margin: 0 auto;

}


.homesadda-hero-content {

    max-width: 1050px;

    margin: 0 auto;

    text-align: center;

}


/* =====================================================
   BADGE
===================================================== */

.homesadda-hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 18px;

    padding: 8px 16px;

    background: #ffffff;

    border: 1px solid #DCE8F2;

    border-radius: 50px;

    color: var(--homesadda-blue);

    font-size: 13px;

    font-weight: 600;

    box-shadow: 0 5px 20px rgba(0, 89, 186, 0.07);

}


.homesadda-badge-dot {

    width: 8px;

    height: 8px;

    background: var(--homesadda-green);

    border-radius: 50%;

    box-shadow: 0 0 0 4px rgba(49, 177, 57, 0.12);

}


/* =====================================================
   HERO HEADING
===================================================== */
.homesadda-hero-content h1 {
    margin: 0 auto;
    max-width: 900px;
    color: #31b139;
    font-family: 'Poppins', sans-serif;
    font-size: 52px;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -2px;
    margin-bottom: 20px;
}


.homesadda-hero-content h1 span {

    color: var(--homesadda-blue);

}


/* =====================================================
   HERO DESCRIPTION
===================================================== */

.homesadda-hero-content > p {

    max-width: 720px;

    margin: 20px auto 32px;

    color: #687586;

    font-size: 16px;

    font-weight: 400;

    line-height: 1.75;

}


/* =====================================================
   SEARCH BOX
===================================================== */

.homesadda-property-search {

    width: 100%;

    max-width: 1080px;

    margin: 0 auto;

    padding: 10px;

    background: #ffffff;

    border: 1px solid #E2EAF1;

    border-radius: 18px;

    box-shadow:
        0 20px 55px rgba(22, 32, 42, 0.10),
        0 5px 18px rgba(0, 89, 186, 0.05);

    text-align: left;

}


/* =====================================================
   BUY RENT TABS
===================================================== */

.homesadda-search-tabs {

    display: flex;

    gap: 6px;

    padding: 4px;

    width: fit-content;

    background: #F2F6F9;

    border-radius: 10px;

    margin-bottom: 10px;

}


.homesadda-search-tab {

    border: 0;

    background: transparent;

    color: #687586;

    padding: 8px 22px;

    border-radius: 7px;

    font-family: 'Poppins', sans-serif;

    font-size: 13px;

    font-weight: 600;

    cursor: pointer;

    transition: all 0.2s ease;

}


.homesadda-search-tab.active {

    background: var(--homesadda-blue);

    color: #ffffff;

    box-shadow: 0 4px 10px rgba(0, 89, 186, 0.18);

}


.homesadda-search-tab:hover:not(.active) {

    color: var(--homesadda-blue);

}


/* =====================================================
   SEARCH FIELDS
===================================================== */

.homesadda-search-fields {

    display: grid;

    grid-template-columns:
        1.4fr
        1.1fr
        1.1fr
        auto;

    align-items: center;

    gap: 0;

}


/* =====================================================
   SEARCH FIELD
===================================================== */

.homesadda-search-field {

    min-height: 62px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 8px 20px;

    border-right: 1px solid #E4EAF0;

}


.homesadda-field-icon {

    width: 38px;

    height: 38px;

    flex: 0 0 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #F0F7FF;

    color: var(--homesadda-blue);

    border-radius: 10px;

}


.homesadda-field-content {

    min-width: 0;

    flex: 1;

}


.homesadda-field-content label {

    display: block;

    margin-bottom: 3px;

    color: #7A8794;

    font-size: 11px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 0.5px;

}


.homesadda-field-content input,
.homesadda-field-content select {

    width: 100%;

    min-width: 0;

    padding: 0;

    margin: 0;

    border: 0;

    outline: 0;

    background: transparent;

    color: var(--homesadda-dark);

    font-family: 'Poppins', sans-serif;

    font-size: 14px;

    font-weight: 600;

}


.homesadda-field-content input::placeholder {

    color: #5E6C79;

    opacity: 1;

}


.homesadda-rupee-icon {

    font-size: 18px;

    font-weight: 700;

}


/* =====================================================
   SEARCH BUTTON
===================================================== */

.homesadda-search-button {

    min-height: 54px;

    margin-left: 12px;

    padding: 0 23px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    border: 0;

    border-radius: 10px;

    background: var(--homesadda-green);

    color: #ffffff;

    font-family: 'Poppins', sans-serif;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    white-space: nowrap;

    box-shadow: 0 7px 18px rgba(49, 177, 57, 0.20);

    transition: all 0.25s ease;

}


.homesadda-search-button:hover {

    background: var(--homesadda-blue);

    transform: translateY(-2px);

}


.homesadda-search-arrow {

    display: flex;

    align-items: center;

}


/* =====================================================
   POPULAR LINKS
===================================================== */

.homesadda-quick-search {

    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 9px;

    margin-top: 18px;

    font-size: 13px;

}


.homesadda-quick-search > span {

    color: #7A8794;

    font-weight: 500;

}


.homesadda-quick-search a {

    padding: 6px 13px;

    background: #ffffff;

    border: 1px solid #E1E8EF;

    border-radius: 50px;

    color: #40505E;

    font-weight: 600;

    text-decoration: none;

    transition: all 0.2s ease;

}


.homesadda-quick-search a:hover {

    color: var(--homesadda-blue);

    border-color: var(--homesadda-blue);

    background: #F5F9FC;

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1050px) {

    .homesadda-nav ul {

        gap: 25px;

    }


    .homesadda-nav a {

        font-size: 14px;

    }


    .post-property-btn {

        padding: 0 16px;

    }

}


@media (max-width: 900px) {

    .homesadda-property-hero {

        padding: 65px 20px 75px;

    }


    .homesadda-search-fields {

        grid-template-columns: 1fr 1fr;

    }


    .homesadda-search-field {

        border-bottom: 1px solid #E4EAF0;

    }


    .homesadda-search-field:nth-child(2) {

        border-right: 0;

    }


    .homesadda-search-button {

        width: 100%;

        margin: 12px 0 2px;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 850px) {

    .homesadda-container {

        min-height: 74px;

        padding: 0 22px;

    }


    .homesadda-nav {

        display: none;

    }


    .post-property-btn {

        display: none;

    }


    .homesadda-menu-toggle {

        display: flex;

    }


    .homesadda-logo img {

        max-width: 175px;

        max-height: 54px;

    }

}


@media (max-width: 600px) {

    .homesadda-property-hero {

        padding: 50px 15px 60px;

    }


    .homesadda-hero-badge {

        font-size: 11px;

        padding: 7px 13px;

    }


    .homesadda-hero-content h1 {

        font-size: 36px;

        letter-spacing: -1px;

        line-height: 1.16;

    }


    .homesadda-hero-content > p {

        margin-top: 15px;

        margin-bottom: 25px;

        font-size: 14px;

        line-height: 1.65;

    }


    .homesadda-property-search {

        padding: 8px;

        border-radius: 14px;

    }


    .homesadda-search-fields {

        display: block;

    }


    .homesadda-search-field {

        min-height: 64px;

        padding: 10px 12px;

        border-right: 0;

    }


    .homesadda-search-tabs {

        width: 100%;

    }


    .homesadda-search-tab {

        flex: 1;

    }


    .homesadda-search-button {

        margin: 8px 0 0;

        min-height: 52px;

    }


    .homesadda-quick-search {

        gap: 7px;

        font-size: 12px;

    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .homesadda-container {

        min-height: 68px;

        padding: 0 15px;

    }


    .homesadda-logo img {

        max-width: 150px;

        max-height: 48px;

    }


    .homesadda-menu-toggle {

        width: 42px;

        height: 42px;

    }


    .homesadda-mobile-nav ul {

        padding-left: 15px;

        padding-right: 15px;

    }


    .homesadda-hero-content h1 {

        font-size: 31px;

    }


    .homesadda-property-hero {

        padding-top: 40px;

    }

}








/* Section two Homepage */
/* =========================
   PROPERTY SECTION
========================= */

.property-section {
    width: 100%;
    padding: 55px 0;
    background: #fff;
}

.property-container {
    width: calc(100% - 24px);
    max-width: 1400px;
    margin: 0 auto;
}


/* HEADING */

.property-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 25px;
}

.property-heading h2 {
    margin: 0 0 7px;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    color: #10284d;
}

.property-heading p {
    margin: 0;
    font-size: 17px;
    color: #52627b;
}


/* BUY RENT */

.property-mode {
    display: flex;
    padding: 4px;
    background: #f1f3f7;
    border-radius: 8px;
}

.mode-btn {
    border: 0;
    background: transparent;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    color: #53627a;
    cursor: pointer;
    transition: all .25s ease;
}

.mode-btn.active {
    background: #10284d;
    color: #fff;
}


/* CATEGORY TABS */

.property-tabs {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 12px;
    margin-bottom: 12px;
    scrollbar-width: thin;
}

.property-tabs::-webkit-scrollbar {
    height: 4px;
}

.property-tab {
    flex: 0 0 auto;
    border: 1px solid #dfe4eb;
    background: #fff;
    color: #3e4d65;
    border-radius: 30px;
    padding: 9px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all .25s ease;
}

.property-tab:hover,
.property-tab.active {
    background: #10284d;
    border-color: #10284d;
    color: #fff;
}


/* SLIDER */

.property-slider-wrap {
    position: relative;
}

.property-carousel {
    padding: 5px 0 10px;
}


/* CARD */

.property-card {
    background: #fff;
    border-radius: 7px;
    overflow: hidden;
    border: 1px solid #e5e8ed;
    transition: transform .25s ease, box-shadow .25s ease;
}

.property-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 40, 77, .10);
}


/* IMAGE */

.property-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #eee;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.04);
}


/* FAVORITE */

.property-favorite {
    position: absolute;
    top: 12px;
    right: 12px;

    width: 38px;
    height: 38px;

    border: 0;
    border-radius: 50%;

    background: rgba(0, 0, 0, .30);
    backdrop-filter: blur(4px);

    color: #fff;
    font-size: 27px;
    line-height: 38px;

    cursor: pointer;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;
}

.property-favorite:hover {
    background: #fff;
    color: #e53935;
}


/* PRICE */

.property-price {
    position: absolute;
    left: 10px;
    bottom: 10px;

    background: #fff;
    color: #10284d;

    padding: 9px 13px;
    border-radius: 5px;

    font-size: 17px;
    font-weight: 700;

    box-shadow: 0 3px 12px rgba(0, 0, 0, .12);
}

.property-price small {
    font-size: 12px;
    font-weight: 600;
    color: #657188;
}


/* CONTENT */

.property-content {
    padding: 14px 12px 12px;
}

.property-content h3 {
    margin: 0 0 7px;

    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;

    color: #10284d;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.property-content p {
    margin: 0 0 10px;

    font-size: 14px;
    color: #5c6980;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.property-content p strong {
    color: #192c48;
}


/* META */

.property-meta {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.property-meta span {
    font-size: 12px;
    color: #68758a;
    background: #f5f6f8;
    padding: 5px 8px;
    border-radius: 4px;
}


/* FOOTER */

.property-footer {
    display: flex;
    justify-content: space-between;
    gap: 10px;

    border-top: 1px solid #edf0f3;
    padding-top: 10px;

    font-size: 12px;
    color: #69758a;
}


/* OWL ARROWS */

.property-carousel .owl-nav {
    margin: 0;
}

.property-carousel .owl-nav button.owl-prev,
.property-carousel .owl-nav button.owl-next {
    position: absolute;

    top: 110px;

    width: 48px;
    height: 48px;

    border-radius: 50% !important;

    background: #fff !important;
    color: #10284d !important;

    border: 1px solid #e1e5eb !important;

    box-shadow: 0 4px 15px rgba(0, 0, 0, .12);

    font-size: 30px !important;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 !important;

    transition: all .2s ease;
}

.property-carousel .owl-nav button.owl-prev {
    left: -24px;
}

.property-carousel .owl-nav button.owl-next {
    right: -24px;
}

.property-carousel .owl-nav button:hover {
    background: #10284d !important;
    color: #fff !important;
}


/* DISABLED */

.property-carousel .owl-nav button.disabled {
    opacity: .35;
    pointer-events: none;
}


/* MOBILE */

@media (max-width: 767px) {

    .property-section {
        padding: 35px 0;
    }

    .property-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .property-heading h2 {
        font-size: 25px;
    }

    .property-mode {
        width: 100%;
    }

    .mode-btn {
        flex: 1;
    }

    .property-image {
        height: 220px;
    }

    .property-carousel .owl-nav button.owl-prev {
        left: -8px;
    }

    .property-carousel .owl-nav button.owl-next {
        right: -8px;
    }

    .property-carousel .owl-nav button.owl-prev,
    .property-carousel .owl-nav button.owl-next {
        width: 40px;
        height: 40px;
        top: 100px;
        font-size: 25px !important;
    }
}